home *** CD-ROM | disk | FTP | other *** search
/ Real Girls - Strip Poker / Real Girls Strip POker (Windows 95 CD-ROM).iso / _SETUP.1 / mui1.dxr / 00001.ls next >
Encoding:
Text File  |  1998-07-30  |  603 b   |  16 lines

  1. on muinewGame
  2.   global alertResult
  3.   set alertObj to new(xtra("MUI"))
  4.   if the machineType = 256 then
  5.     set alertInitList to [#buttons: #YesNo, #default: 2, #icon: #question, #title: "RealGirls", #message: "Are you sure you want to end current game?", #movable: 0]
  6.   else
  7.     set alertInitList to [#buttons: #OkCancel, #default: 2, #icon: #question, #title: "RealGirls", #message: "Are you sure you want to end current game?", #movable: 0]
  8.   end if
  9.   if objectp(alertObj) then
  10.     set alertResult to alert(alertObj, alertInitList)
  11.     tell the stage
  12.       checkAlertResult()
  13.     end tell
  14.   end if
  15. end
  16.